home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir41 / yesno21.zip / LOADNET.BAT < prev    next >
DOS Batch File  |  1993-03-29  |  1KB  |  32 lines

  1. @echo off
  2.  
  3. c:\util\yesorno /Y /15 Do you want to login to the Novell Network ? [Y/N]  
  4. if errorlevel 1 goto END
  5. rem -- If 'N' is pressed, batch file will continue at :END
  6. rem -- If 'Y' is pressed then the batch file will continue at the next line. 
  7.  
  8. loadhigh c:\dos\ipx.com
  9. loadhigh c:\dos\netx.com /ps=dad /c=c:\dos\net.cfg
  10. set lan_name=HATFIELD
  11.  
  12. c:\util\yesorno /Y /15 Do you want to login as : %lan_name% ? [ Y or N ] 
  13. if errorlevel 1 set lan_name=
  14. rem -- If 'N' is pressed, lan_name variable will be erased.
  15. rem -- If 'Y' is pressed then the batch file will continue at the next line.
  16.  
  17. :LOGIN
  18. f:login DAD/%lan_name%
  19. if not errorlevel 1 goto END
  20. rem -- Login.exe returns an error if the login is unsuccessful 
  21. rem -- If no error occurs, batch file will continue at :END
  22.  
  23. c:\util\yesorno /Y /15 /TB:4 /TC:14  Network not loaded! Try Again ? [Y/N] 
  24. if errorlevel 1 goto END
  25. rem -- If 'N' is pressed, batch file will continue at :END
  26. rem -- If 'Y' is pressed then the batch file will continue at the next line.
  27.  
  28. goto LOGIN
  29.  
  30. :END 
  31. c:
  32.